Socket
Socket
Sign inDemoInstall

array-union

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

array-union

Create an array of unique values, in order, from the input arrays


Version published
Weekly downloads
43M
increased by2.2%
Maintainers
1
Weekly downloads
 
Created

What is array-union?

The array-union package is designed to create an array of unique values, in order, from all given arrays. It's particularly useful for combining arrays while removing duplicate entries, ensuring that the resulting array contains only unique items.

What are array-union's main functionalities?

Creating a union of arrays

This feature allows you to combine multiple arrays into one array with unique values, effectively removing duplicates.

const arrayUnion = require('array-union');
const result = arrayUnion([1, 2], [2, 3], [3, 4]);
console.log(result); // Output: [1, 2, 3, 4]

Other packages similar to array-union

Keywords

FAQs

Package last updated on 16 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc